home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / stringex / ex5.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  233 b   |  15 lines

  1. Program Example5;
  2.  
  3. Uses strings;
  4.  
  5. { Program to demonstrate the StrLCopy function. }
  6.  
  7. Const P : PCHar = '123456789ABCDEF';
  8.  
  9. var PP : PCHar;
  10.  
  11. begin
  12.   PP:=StrAlloc(11);
  13.   Writeln ('First 10 characters of P : ',StrLCopy (PP,P,10));
  14. end.
  15.